home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha 2008 January / Cybermycha 1_2008.iso / Data.cab / _2C060776823A4E0DA1D2A576327031A2 < prev    next >
Encoding:
Text File  |  2004-03-17  |  624 b   |  29 lines

  1. regc4f( 5, %daycolor_r, %daycolor_g, %daycolor_b, %daycolor_a )
  2. regc4f( 7, %ambient_r, %ambient_g, %ambient_b, %ambient_a )
  3. pshader("
  4.  
  5. ;#include <consts.psh>
  6. ps_1_1
  7.  
  8. ;def c5, DAYCOLOR
  9. ;def    c7, AMBIENT
  10.  
  11. tex t0 ;RGB=kolor terenu, A=lightmapa terenu
  12. tex t1 ;detal terenu
  13. tex t2 ;Chmury
  14. tex t3 ;water deep
  15.  
  16. mul r0, t0, t1 ;kolor * detal
  17.  
  18. mul r1, t0.a, 1-t2.a ;lightmapa terenu * Chmury
  19.  
  20. mad_sat r1, r1, c7, c7.a ;skalowanie oswietlenia (dodanie ambientu)
  21.  
  22. mul r1, r1, c5 ;wymnozenie oswietlenia przez kolor pory dnia/swiatla
  23.  
  24. mul r0.rgb, r0, r1 ;mnozymy kolory przez oswietlenie
  25. +mov r0.a, t3.a
  26.  
  27. ")
  28.  
  29.